home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_ghostscript.idb / usr / freeware / bin / dvipdf.z / dvipdf
Text File  |  2002-04-08  |  841b  |  41 lines

  1. #!/bin/sh
  2. # $Id: dvipdf,v 1.2 2001/06/22 16:09:22 lpd Exp $
  3. # Convert DVI to PDF.
  4. #
  5. # Please contact Andrew Ford <A.Ford@ford-mason.co.uk> with any questions
  6. # about this file.
  7. #
  8. # Based on ps2pdf
  9.  
  10. OPTIONS=""
  11. while true
  12. do
  13.     case "$1" in
  14.     -*) OPTIONS="$OPTIONS $1" ;;
  15.     *)  break ;;
  16.     esac
  17.     shift
  18. done
  19.  
  20. if [ $# -lt 1 -o $# -gt 2 ]; then
  21.     echo "Usage: `basename $0` [options...] input.dvi [output.pdf]" 1>&2
  22.     exit 1
  23. fi
  24.  
  25. infile=$1;
  26.  
  27. if [ $# -eq 1 ]
  28. then
  29.     case "${infile}" in
  30.       *.dvi)    base=`basename "${infile}" .dvi` ;;
  31.       *)        base=`basename "${infile}"` ;;
  32.     esac
  33.     outfile="${base}".pdf
  34. else
  35.     outfile=$2
  36. fi
  37.  
  38. # We have to include the options twice because -I only takes effect if it
  39. # appears before other options.
  40. exec dvips -q -f "$infile" | gs $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite -
  41.